In [7]:
#Example 1, with a corner past the conductor
#S = {4,9}
seS = [0, 4, 8, 9, 12, 13, 16, 17, 18, 20, 21, 22, 24]
N = 25
G = basePlot(seS,N)
G = addToPlot(seS,[7,10,13],N,G,'blue')
plot(G)
Out[7]:
In [8]:
#Example 1, with a corner past the conductor
#S = {4,9}
seS = [0, 4, 8, 9, 12, 13, 16, 17, 18, 20, 21, 22, 24]
N = 25
G = basePlot(seS,N)
G = addToPlot(seS,[7,8,10,15],N,G,'blue')
plot(G)
Out[8]:
In [9]:
#Example 1, with a corner past the conductor
#S = {4,9}
seS = [0, 4, 8, 9, 12, 13, 16, 17, 18, 20, 21, 22, 24]
N = 25
G = basePlot(seS,N)
G = addToPlot(seS,[7,8,10,20],N,G,'blue')
plot(G)
Out[9]:
In [10]:
#Example 1, with two corners past the conductor
#S = {4,9}
seS = [0, 4, 8, 9, 12, 13, 16, 17, 18, 20, 21, 22, 24]
N = 25
G = basePlot(seS,N)
G = addToPlot(seS,[7,8,10,13,20],N,G,'blue')
plot(G)
Out[10]:
In [11]:
#Example 1, with three corners past the conductor
#S = {4,9}
seS = [0, 4, 8, 9, 12, 13, 16, 17, 18, 20, 21, 22, 24]
N = 25
G = basePlot(seS,N)
G = addToPlot(seS,[7,8,10,13,18,20],N,G,'blue')
plot(G)
Out[11]:
In [ ]: